home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / nt / gr564s.zip / SRC / MS / LOGINNT.C < prev    next >
C/C++ Source or Header  |  1993-08-27  |  216b  |  18 lines

  1. /* getlogin for Windows/NT */
  2.  
  3. /* by Frank Whaley */
  4.  
  5.     /* $Id$ */
  6.  
  7. #include <windows.h>
  8.  
  9.     char *
  10. getlogin()
  11. {
  12.     static char buf[128];
  13.     long len = sizeof(buf);
  14.  
  15.     GetUserName(buf, &len);
  16.     return buf;
  17. }
  18.